docs(readme): use DAQiFi brand capitalization in prose contexts#218
Merged
Conversation
Review Summary by QodoAlign README title with DAQiFi product naming pattern
WalkthroughsDescription• Rename README title from "DAQiFi Core Library" to "DAQiFi Core" • Align with DAQiFi product naming pattern used across ecosystem • Remove redundant "Library" suffix from lead sentence Diagramflowchart LR
old["DAQiFi Core Library"]
new["DAQiFi Core"]
pattern["DAQiFi {ProductName} pattern"]
old -- "rename to match" --> new
pattern -- "aligns with" --> new
File Changes1. README.md
|
The recent README rewrite (#215) used the NuGet package identifier "Daqifi.Core" as a brand-style product name in prose contexts (title, section headings, body copy, table cell). Per DAQiFi marketing guidelines, prose references to the brand should use "DAQiFi", so those marketing-facing occurrences become "DAQiFi Core" — matching the "DAQiFi {ProductName}" pattern used by daqifi-desktop. Code and badge contexts that reference the literal NuGet package or C# namespace (Daqifi.Core in badges, `dotnet add package Daqifi.Core`, `using Daqifi.Core.Device;`, DaqifiDeviceFactory, etc.) are unchanged — those follow .NET identifier conventions, not marketing style. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
c05a530 to
3c41329
Compare
This was referenced May 30, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The recent README rewrite (#215) used the NuGet package identifier
Daqifi.Coreas a brand-style product name in prose contexts. Per DAQiFi marketing guidelines (verified against daqifi.com), the brand is DAQiFi — so prose references to the product should be DAQiFi Core, matching theDAQiFi {ProductName}pattern already used by daqifi-desktop (# DAQiFi Desktop).Changed (prose contexts)
# Daqifi.Core→# DAQiFi Core## What is Daqifi.Core?→## What is DAQiFi Core?**Daqifi.Core is how you integrate...**→**DAQiFi Core is how you integrate...**## Where Daqifi.Core fits→## Where DAQiFi Core fits**Daqifi.Core — this library**→**DAQiFi Core — this library**Unchanged (code / package / badge contexts)
dotnet add package Daqifi.Core(literal package name)using Daqifi.Core.Device;and other C# namespacesDaqifiDeviceFactory,DaqifiOutMessageclass namesThese follow .NET identifier conventions, not marketing style — the mixed-case
DAQiFibrand form isn't legal/idiomatic in C# identifiers.Test plan
# DAQiFi Coreheading.Daqifi.Corereferences remain — only badges, shell commands, and C# code. (grep -n "Daqifi" README.mdshould show only those.)🤖 Generated with Claude Code